projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
929cc9d
)
* compile.el (compile-file-of-error): Remember that
author
Jim Blandy
<jimb@redhat.com>
Tue, 22 Jun 1993 03:54:25 +0000
(
03:54
+0000)
committer
Jim Blandy
<jimb@redhat.com>
Tue, 22 Jun 1993 03:54:25 +0000
(
03:54
+0000)
compilation-error-list stores file names as strings, not as (DIR .
FILE) pairs.
lisp/progmodes/compile.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/compile.el
b/lisp/progmodes/compile.el
index 12b866ce3d8cdf20c7aaff71717ddaab6a1af6a1..7bb2c95ff900f0b0a9cbd9d13839e816d6009e65 100644
(file)
--- a/
lisp/progmodes/compile.el
+++ b/
lisp/progmodes/compile.el
@@
-507,8
+507,7
@@
Does NOT find the source line like \\[next-error]."
(setq data (cdr data))
(if (markerp data)
(buffer-file-name (marker-buffer data))
- (setq data (car data))
- (expand-file-name (cdr data) (car data))))
+ (car data)))
(defun compilation-next-file (n)
"Move point to the next error for a different file than the current one."